home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
escalant
/
escala21.lha
/
escalante2.1
/
src
/
bin
/
Makefile
Wrap
Makefile
|
1993-07-15
|
2KB
|
68 lines
include make.src
INCLUDES= ${MYINCLUDE} ${ESCALANTE_INCLUDES} -I${ESCALANTE_DIR}/incl -I${ESCALANTE_DIR}/images
BASE_CCFLAGS= ${MYCCFLAGS} ${INCLUDES} ${GEB_DEBUG}
#
#Add the -D to the flags if you want to build just the structural library
#
#CCFLAGS = ${BASE_CCFLAGS} -DDONT_USE_VISUAL
#
#If there are no Location Constraints used then compile with:
#CCFLAGS = ${BASE_CCFLAGS} -DDONT_USE_LC
#If there are no incident element groups used then compile with:
#CCFLAGS = ${BASE_CCFLAGS} -DDONT_USE_GROUPS
#If there are no tmptl/tmphd used in relations then compile with:
#CCFLAGS = ${BASE_CCFLAGS} -DDONT_USETMPTLHD
#if you dont want any strcutrual graph elements then
#CCFLAGS = ${BASE_CCFLAGS} -DDONT_USE_STRUCTURAL
#CCFLAGS = ${BASE_CCFLAGS} -DDONT_USE_IBBOX_REF
CCFLAGS = ${BASE_CCFLAGS}
.SUFFIXES: .C
.C.o:
$(ESCALANTE_CC) $(CCFLAGS) -c $<
all ALL: ${LIBNAME}
${LIBNAME}: ${OBJS}
$(ESCALANTE_CC) -r -o ${LIBNAME} ${OBJS}
@rm -f ${ESCALANTE_DIR}/lib/${LIBNAME}
@ln -s ${MYDIR}/${LIBNAME} ${ESCALANTE_DIR}/lib/${LIBNAME}
clean:
rm -f ${OBJS} *..C *.bak ${LIBNAME} *~ core
include:
@cd ${ESCALANTE_DIR}/incl
@for h in $(HDRS); do rm -f ${ESCALANTE_DIR}/incl/$$h;ln -s ${MYDIR}/$$h ${ESCALANTE_DIR}/incl/$$h; done
# for h in $(OTHERHDRS); do rm -f ${ESCALANTE_DIR}/incl/$$h;ln -s ${MYDIR}/$$h ${ESCALANTE_DIR}/incl/$$h; done
print:
enscript -2Gr -b`basename $${PWD}` ${HDRS} ${SRCS}
tf transform:
tf.sh
depend:
makedepend -s " DO NOT DELETE" ${CFLAGS} ${SRCS}
# DO NOT DELETE THIS LINE -- make depend depends on it.